home *** CD-ROM | disk | FTP | other *** search
- /* ARexx script to test mouse program */
-
- address 'ontheball'
- options results
- options prompt 'ontheball>'
-
- do forever
-
- parse pull command /* get a command from the user */
-
- drop rc /* clear out previous return code */
-
- drop result /* clear out previous result */
-
- interpret command /* execute the command */
-
- say rc result
-
- end
-